home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / ASIA.AWK < prev    next >
Text File  |  1990-02-08  |  245b  |  8 lines

  1. # compute the total population and number of Asian countries
  2. # AKW p38
  3.  
  4. $4 == "Asia" { pop = pop + $3; n = n + 1 }
  5. END          { print "Total population of the", n,
  6.                    "Asian countries is", pop, "million."
  7.              }
  8.